home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 1 / LSD Compendium Deluxe 1.iso / a / text / manipulation / cv.lha / cv / scripts / Morse->ASCII.cvt < prev    next >
Encoding:
Text File  |  1993-12-31  |  917 b   |  54 lines

  1. /*
  2.  *  Morse->ASCII.CVT
  3.  *
  4.  *  (c)Copyright 1993 by Tobias Ferber,  All Rights Reserved.
  5.  */
  6.  
  7. ".-\n"     -> "a";
  8. "-...\n"   -> "b";
  9. "-.-.\n"   -> "c";
  10. "-..\n"    -> "d";
  11. ".\n"      -> "e";
  12.  "..-.\n"  -> "f";
  13. "--.\n"    -> "g";
  14. "....\n"   -> "h";
  15. "..\n"     -> "i";
  16. ".---\n"   -> "j";
  17. "-.-\n"    -> "k";
  18. ".-..\n"   -> "l";
  19. "--\n"     -> "m";
  20. "-.\n"     -> "n";
  21. "---\n"    -> "o";
  22. ".--.\n"   -> "p";
  23. "--.-\n"   -> "q";
  24. ".-.\n"    -> "r";
  25. "...\n"    -> "s";
  26. "-\n"      -> "t";
  27. "..-\n"    -> "u";
  28. "...-\n"   -> "v";
  29. ".--\n"    -> "w";
  30. "-..-\n"   -> "x";
  31. "-.--\n"   -> "y";
  32. "--..\n"   -> "z";
  33.  
  34. "----\n"   -> "ch";
  35.  
  36. ".-.-\n"   -> "ä";
  37. "---.\n"   -> "ö";
  38. "..--\n"   -> "ü";
  39.  
  40. "-----\n"  -> "0";
  41. ".----\n"  -> "1";
  42. "..---\n"  -> "2";
  43. "...--\n"  -> "3";
  44. "....-\n"  -> "4";
  45. ".....\n"  -> "5";
  46. "-....\n"  -> "6";
  47. "--...\n"  -> "7";
  48. "---..\n"  -> "8";
  49. "----.\n"  -> "9";
  50.  
  51. "-...-\n"  -> "\n";
  52. ".-.-.-\n" -> ".";
  53. "--..--\n" -> ",";
  54.